home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #2 / Amiga Plus CD - 2004 - No. 02.iso / AmiSoft / Hard / drivr / ddc_0.72.lha / DDC / Download libraries < prev    next >
Text File  |  2003-10-10  |  820b  |  31 lines

  1. ; Automatic download script for identify.library
  2. ; Copyright 2004 by Norman Walter
  3. ; This script starts your Webbrowser and downloads the file.
  4. ; To use this script, you need openurl.library and a web browser.
  5. ; Download openurl.library from:
  6. ; http://us.aminet.net/comm/www/OpenURL44.lha
  7.  
  8. if exists LIBS:openurl.library
  9.  
  10.   version >ENV:identifyversion LIBS:identify.library 37
  11.  
  12.   if WARN
  13.  
  14.     RequestChoice >ENV:rcnum "Download libraries" "This script downloads the needed libraries from the internet." "Continue" "Cancel"
  15.  
  16.     if VAL $rcnum GT 0
  17.       openurl http://us.aminet.net/util/libs/IdentifyUsr.lha
  18.     endif
  19.  
  20.   else
  21.  
  22.      RequestChoice >NIL: "Download libraries" "$identifyversion already installed" "Ok"
  23.  
  24.   endif
  25.  
  26. else
  27.  
  28.   RequestChoice >NIL: "Download libraries" "Please install openurl.library" "Ok"
  29.  
  30. endif
  31.